home *** CD-ROM | disk | FTP | other *** search
/ Aminet 3 / Aminet 3 - July 1994.iso / Aminet / misc / unix / tracker_4_3.lzh / tracker / prefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  901 b   |  33 lines

  1. /* prefs.h 
  2.     vi:se ts=3 sw=3:
  3.  */
  4.  
  5. /* $Id: prefs.h,v 4.0 1994/01/11 17:54:52 espie Exp espie $
  6.  * $Log: prefs.h,v $
  7.  * Revision 4.0  1994/01/11  17:54:52  espie
  8.  * *** empty log message ***
  9.  *
  10.  * Revision 1.1  1994/01/06  22:32:42  Espie
  11.  * Initial revision
  12.  *
  13.  */
  14.  
  15. #define BASE_PREFS      50
  16. #define PREF_TYPE       BASE_PREFS
  17. #define PREF_SPEED      (BASE_PREFS+1)
  18. #define PREF_TOLERATE   (BASE_PREFS+2)
  19. #define PREF_REPEATS    (BASE_PREFS+3)
  20. #define PREF_IMASK      (BASE_PREFS+4)
  21. #define PREF_BCDVOL     (BASE_PREFS+5)
  22. #define PREF_DUMP       (BASE_PREFS+6)
  23. #define PREF_SYNC       (BASE_PREFS+7)
  24. #define PREF_SHOW       (BASE_PREFS+8)
  25.  
  26. #define NUMBER_PREFS    (PREF_SHOW - BASE_PREFS + 1)
  27.  
  28. XT VALUE get_pref P((int index));
  29. XT void set_pref P((int index, VALUE value));
  30. XT int get_pref_scalar P((int index));
  31. XT void set_pref_scalar P((int index, int value));
  32. XT struct tag *get_prefs P((void));
  33.